home *** CD-ROM | disk | FTP | other *** search
/ Danny Amor's Online Library / Danny Amor's Online Library - Volume 1.iso / html / faqs / faq / linux / faq.part2 < prev    next >
Encoding:
Text File  |  1995-07-25  |  48.3 KB  |  1,156 lines

  1. Subject: Linux Frequently Asked Questions with Answers (FAQ: 2/2)
  2. Newsgroups: comp.os.linux.announce,comp.os.linux.help,comp.answers,news.answers
  3. From: ijackson@nyx.cs.du.edu (Ian Jackson)
  4. Date: Sun, 30 Oct 1994 16:25:07 GMT
  5.  
  6. Archive-Name: linux/faq/part2
  7. Last-Modified: 30 Oct 1994
  8.  
  9. -----BEGIN PGP SIGNED MESSAGE-----
  10.  
  11. (Continued from part 1, where you'll find the introduction and
  12.  table of contents.)
  13. ===============================================================================
  14.  
  15. Section 6.  Solutions to common miscellaneous problems
  16.  
  17.  Q6.1        Setuid scripts don't seem to work.
  18.  Q6.2        Free memory as reported by free keeps shrinking.
  19.  Q6.3        When I add more memory it slows to a crawl.
  20.  Q6.4        Some programs (e.g. xdm) won't let me log in.
  21.  Q6.5        Some programs let me log in with no password.
  22.  Q6.6        My machine runs very slowly when I run GCC / X / ...
  23.  Q6.7        I can only log in as root.
  24.  Q6.8        My screen is all full of weird characters instead of letters.
  25.  Q6.9        I have screwed up my system and can't log in to fix it.
  26.  Q6.10       Emacs just dumps core.
  27.  Q6.11       I've discovered a huge security hole in rm !
  28.  Q6.12       lpr and/or lpd aren't working.
  29.  
  30. - -----------------------------------------------------------------------------
  31.  
  32. Question 6.1.  Setuid scripts don't seem to work.
  33.  
  34. That's right.  This feature has been deliberately disabled in the Linux
  35. kernel because setuid scripts are almost always a security hole.  If you
  36. want to know why read the FAQ for comp.unix.questions.
  37.  
  38. - -----------------------------------------------------------------------------
  39.  
  40. Question 6.2.  Free memory as reported by free keeps shrinking.
  41.  
  42. The `free' figure printed by free doesn't include memory used as a disk
  43. buffer cache - shown in the `buffers' column.  If you want to know how
  44. much memory is really free add the `buffers' amount to `free'.
  45.  
  46. The disk buffer cache tends to grow soon after starting Linux up, as you
  47. load more programs and use more files and the contents get cached.  It
  48. will stabilise after a while.
  49.  
  50. - -----------------------------------------------------------------------------
  51.  
  52. Question 6.3.  When I add more memory it slows to a crawl.
  53.  
  54. This is quite a common symptom of a failure to cache the additional
  55. memory.  The exact problem depends on your motherboard.
  56.  
  57. Sometimes you have to enable caching of certain regions in your BIOS
  58. setup.  Look in the CMOS setup and see if there is an option to cache the
  59. new memory area which is currently switched off.  This is apparently most
  60. common on a 486.
  61.  
  62. Sometimes the RAMs have to be in certain sockets to be cached.
  63.  
  64. Sometimes you have to set jumpers to enable the caching.
  65.  
  66. Some motherboards don't cache all the RAM if you have more RAM per amount
  67. of cache than they expect.  Usually a full 256K cache will solve this
  68. problem.
  69.  
  70. If in doubt, check your motherboard manual.  If you still can't fix it
  71. because the documentation is inadequate you might like to post a message
  72. giving *all* the details - make, model number, date code, etc. so that
  73. other Linux users can avoid it.
  74.  
  75. - -----------------------------------------------------------------------------
  76.  
  77. Question 6.4.  Some programs (e.g. xdm) won't let me log in.
  78.  
  79. You are probably using non-shadow-password programs but are using shadow
  80. passwords.
  81.  
  82. If so, you have to get or compile a shadow password version of the
  83. program(s) in question.  The shadow password suite can be found in
  84. (amongst other places):
  85.    tsx-11.mit.edu:/pub/linux/sources/usr.bin/shadow-*
  86. This is the source code; you will probably find the binaries in
  87. .../linux/binaries/usr.bin.
  88.  
  89. - -----------------------------------------------------------------------------
  90.  
  91. Question 6.5.  Some programs let me log in with no password.
  92.  
  93. You probably have the same problem as in Q6.4 `Some programs (e.g. xdm)
  94. won't let me log in.', with an added wrinkle:
  95.  
  96. If you are using shadow passords you should put an asterisk in the
  97. password field of /etc/passwd for each account, so that if a program
  98. doesn't know about the shadow passwords it won't think it's a passwordless
  99. account and let anyone in.
  100.  
  101. - -----------------------------------------------------------------------------
  102.  
  103. Question 6.6.  My machine runs very slowly when I run GCC / X / ...
  104.  
  105. You may not have any swap enabled.  You need to enable swapping to allow
  106. Linux to page out bits of data programs aren't using at the moment to disk
  107. to make more room for other programs and data.  If you don't Linux has to
  108. keep data in memory and throw away in-memory copies of programs (which are
  109. paged straight from the filesystem) and so less and less program is in
  110. memory and everything runs very slowly.
  111.  
  112. See the Installation HOWTO and the Installation and Getting Started Guide
  113. [Q2.1 `Where can I get the HOWTOs and other documentation ?'] for details
  114. of how to set up a swap partition or swapfile; see also Q4.5 `My swap area
  115. isn't working.'.
  116.  
  117. Alternatively you may have too little real memory.  If you have less RAM
  118. than all the programs you're running at once use Linux will use your hard
  119. disk instead and thrash horribly.  The solution in this case is to not run
  120. so many things at once or to buy more memory.  You can also reclaim some
  121. memory by compiling and using a kernel with less options configured.  See
  122. Q7.6 `How do I upgrade/recompile my kernel ?'.
  123.  
  124. You can tell how much memory and/or swap you're using by using the free
  125. command, or by typing
  126.     cat /proc/meminfo
  127.  
  128. If your kernel is configured with a ramdisk this is probably wasted space
  129. and will cause things to go slowly.  Use LILO or rdev to tell the kernel
  130. not to allocate a ramdisk (see the LILO documentation or type man rdev).
  131.  
  132. - -----------------------------------------------------------------------------
  133.  
  134. Question 6.7.  I can only log in as root.
  135.  
  136. You probably have some permission problems, or you have a file
  137. /etc/nologin.
  138.  
  139. If the latter put rm -f /etc/nologin in your /etc/rc or /etc/rc.local.
  140.  
  141. Otherwise check the permissions on your shell, and any filenames which
  142. appear in error messages, and also the directories containing these files
  143. all the way back up the tree to the root directory.
  144.  
  145. - -----------------------------------------------------------------------------
  146.  
  147. Question 6.8.  My screen is all full of weird characters instead of letters.
  148.  
  149. You probably sent some binary data to your screen by mistake.  Type echo
  150. ^V^[c (that's e c h o space control-V escape c return) to fix it.  Many
  151. Linux distributions have a command reset that does this.
  152.  
  153. - -----------------------------------------------------------------------------
  154.  
  155. Question 6.9.  I have screwed up my system and can't log in to fix it.
  156.  
  157. Reboot from an emergency floppy or floppy pair, for example the Slackware
  158. boot- and root-disk pair (in the install subdirectory of the Slackware
  159. mirrors) or the MCC installation boot floppy.  There are also two diy
  160. rescue disk creation packages on sunsite.unc.edu in
  161. /pub/Linux/system/Recovery.  These are better as they'll have your own
  162. kernel on them, so that you don't run the risk of missing devices,
  163. filesystems, etc.
  164.  
  165. Get to a shell prompt and mount your hard disk with something like
  166.    mount -t ext2 /dev/hda1 /mnt
  167.  
  168. Then your filesystem is available under the directory /mnt and you can fix
  169. the problem.  Remember to unmount your hard disk before rebooting (cd back
  170. down to / first or it will say it's busy).
  171.  
  172. - -----------------------------------------------------------------------------
  173.  
  174. Question 6.10.  Emacs just dumps core.
  175.  
  176. You probably have the X version of Emacs that comes with SLS.  It doesn't
  177. work without the X libraries.  The solution is to install X Windows or get
  178. a newer Emacs binary without any X Windows support.
  179.  
  180. - -----------------------------------------------------------------------------
  181.  
  182. Question 6.11.  I've discovered a huge security hole in rm !
  183.  
  184. No you haven't.  You are obviously new to Unix and need to read a good
  185. book on it to find out how things work.  Clue: ability to delete files
  186. under Unix depends on permission to write the directory they are in.
  187.  
  188. - -----------------------------------------------------------------------------
  189.  
  190. Question 6.12.  lpr and/or lpd aren't working.
  191.  
  192. Check the Printing HOWTO [Q2.1 `Where can I get the HOWTOs and other
  193. documentation ?'].
  194.  
  195. ===============================================================================
  196.  
  197. Section 7.  How do I do this or find out that ... ?
  198.  
  199.  Q7.1        How can I get scrollback in text mode ?
  200.  Q7.2        How do I switch virtual consoles ?  How do I enable them ?
  201.  Q7.3        How do I set the timezone ?
  202.  Q7.4        What version of Linux and what machine name am I using ?
  203.  Q7.5        How can I enable or disable core dumps ?
  204.  Q7.6        How do I upgrade/recompile my kernel ?
  205.  Q7.7        Can I have more than 3 serial ports by sharing interrupts ?
  206.  Q7.8        How do I make a bootable floppy ?
  207.  Q7.9        How do I remap my keyboard to UK, French, etc. ?
  208.  Q7.10       How do I get NUM LOCK to default to on ?
  209.  
  210. - -----------------------------------------------------------------------------
  211.  
  212. Question 7.1.  How can I get scrollback in text mode ?
  213.  
  214. With the default US keymap you can use Shift with the PageUp and PageDown
  215. keys (NB these must be the grey ones, not the ones on the numeric keypad
  216. !).  With other keymaps check the maps in /usr/lib/keytables; you can
  217. remap the scroll up and down keys to be whatever you like --- for example,
  218. in order to remap them to keys that exist on an 84-key AT keyboard.
  219.  
  220. You can't increase the amount of scrollback, because of the way it is
  221. implemented using the video memory to store the scrollback text, though
  222. you may be able to get more scrollback in each virtual console by reducing
  223. the total number of VC's --- see <linux/tty.h>.
  224.  
  225. - -----------------------------------------------------------------------------
  226.  
  227. Question 7.2.  How do I switch virtual consoles ?  How do I enable them ?
  228.  
  229. In text mode, press (Left) Alt-F1 to Alt-F12 to select the consoles tty1
  230. to tty12.  To switch out of X windows you must press Ctrl-Alt-F1 etc;
  231. Alt-F5 or whatever will switch back.
  232.  
  233. Your kernel probably doesn't have all 12 compiled in; the default is 8.
  234. This is controlled by NR_CONSOLES in linux/include/linux/tty.h.
  235.  
  236. If you want to use a VC for ordinary login you need to list it in
  237. /etc/inittab, which controls which terminals and virtual consoles have
  238. login prompts.  NB: X needs at least one free VC in order to start.
  239.  
  240. - -----------------------------------------------------------------------------
  241.  
  242. Question 7.3.  How do I set the timezone ?
  243.  
  244. Change directory to /usr/lib/zoneinfo; get the timezone package if you
  245. don't have this directory.  The source can be found on sunsite.unc.edu in
  246. /pub/Linux/system/Admin/timesrc-1.2.tar.gz.
  247.  
  248. Then make a symbolic link named localtime pointing to one of the files in
  249. this directory (or a subdirectory), and one called posixrules pointing to
  250. localtime.  For example:
  251.    ln -sf US/Mountain localtime
  252.    ln -sf localtime posixrules
  253. This change will take effect immediately - try date.
  254.  
  255. Don't try to use the TZ variable - leave it unset.
  256.  
  257. - -----------------------------------------------------------------------------
  258.  
  259. Question 7.4.  What version of Linux and what machine name am I using ?
  260.  
  261. Type:
  262.    uname -a
  263.  
  264. - -----------------------------------------------------------------------------
  265.  
  266. Question 7.5.  How can I enable or disable core dumps ?
  267.  
  268. Since 0.99pl14 Linux has had corefiles turned off by default for all
  269. processes.
  270.  
  271. You can turn them on or off by using the ulimit command in bash, or the
  272. limit command in tcsh.  See the manpage for the shell for more details.
  273.  
  274. That command affects all programs run from that shell (directly or
  275. indirectly), not the whole system.
  276.  
  277. If you wish to enable or disable coredumping for all processes by default
  278. you can change the default setting in <linux/sched.h> - see the definition
  279. of INIT_TASK.
  280.  
  281. - -----------------------------------------------------------------------------
  282.  
  283. Question 7.6.  How do I upgrade/recompile my kernel ?
  284.  
  285. See the README which comes with the kernel release on ftp.funet.fi, in
  286. /pub/OS/Linux/PEOPLE/Linus and mirrors thereof.  Try to get it from a
  287. closer site if possible; ftp.funet.fi is a very busy site and therefore
  288. slow -- see Q2.5 `Where can I get Linux material by FTP ?'.  You may
  289. already have a version of the kernel source code installed on your system,
  290. but if you got it as part of a standard distribution it is likely to be
  291. somewhat out of date (this is not a problem if you only want a
  292. custom-configured kernel, but it probably is if you need to upgrade.)
  293.  
  294. Remember that to make the new kernel boot you must run LILO after copying
  295. the kernel into your root partition -- the Makefile in recent kernels has
  296. a special zlilo target for this; try make zlilo.
  297.  
  298. Russel Nelson posts summaries of what changes in recent kernel patches to
  299. comp.os.linux.development, and these are archived on ftp.emlist.com in
  300. /pub/kchanges.
  301.  
  302. - -----------------------------------------------------------------------------
  303.  
  304. Question 7.7.  Can I have more than 3 serial ports by sharing interrupts ?
  305.  
  306. Not without some trickery.  This is a limitation of the ISA bus
  307. architecture.
  308.  
  309. See the Serial HOWTO for information about how to work around this
  310. problem.
  311.  
  312. - -----------------------------------------------------------------------------
  313.  
  314. Question 7.8.  How do I make a bootable floppy ?
  315.  
  316. Make a filesystem on it with bin, etc and lib directories -- everything
  317. you need.  Install a kernel on it and arrange to have LILO boot it from
  318. the floppy (see the LILO documentation, in lilo.u.*.ps).
  319.  
  320. If you build the kernel (or tell LILO to tell the kernel) to have a
  321. ramdisk the same size as the floppy the ramdisk will be loaded at
  322. boot-time and mounted as root in place of the floppy.
  323.  
  324. - -----------------------------------------------------------------------------
  325.  
  326. Question 7.9.  How do I remap my keyboard to UK, French, etc. ?
  327.  
  328. For recent kernels, get kbd*.tar.gz from the same place as you got the
  329. kernel source.  Make sure you get the appropriate version; you have to use
  330. the right keyboard-mapping package to go with your kernel version.  The
  331. latest at the time of writing is kbd-0.85.tar.gz, which works with kernel
  332. versions from 1.0.
  333.  
  334. For older kernels you have to edit the top-level kernel Makefile, in
  335. /usr/src/linux.
  336.  
  337. You may find more helpful information in the Keystroke FAQ, on
  338. ftp.funet.fi in /pub/OS/Linux/doc/kbd.FAQ.
  339.  
  340. - -----------------------------------------------------------------------------
  341.  
  342. Question 7.10.  How do I get NUM LOCK to default to on ?
  343.  
  344. Use the setleds program, for example (in /etc/rc.local):
  345.    for t in 1 2 3 4 5 6 7 8
  346.    do
  347.         setleds +num < /dev/tty$t > /dev/null
  348.    done
  349.  
  350. setleds is part of the kbd-0.8x package (see Q7.9 `How do I remap my
  351. keyboard to UK, French, etc. ?').
  352.  
  353. Alternatively, patch your kernel.  You need to arrange for KBD_DEFLEDS to
  354. be defined to (1 << VC_NUMLOCK) when compiling drivers/char/keyboard.c.
  355.  
  356. ===============================================================================
  357.  
  358. Section 8.  Miscellaneous information and questions answered
  359.  
  360.  Q8.1        What is a .gz file ? And a .tgz ? And ... ?
  361.  Q8.2        What does VFS stand for ?
  362.  Q8.3        What is a BogoMip ?
  363.  Q8.4        What is the Linux Journal and where can I get it ?
  364.  Q8.5        How many people use Linux ?
  365.  Q8.6        How should I pronounce Linux ?
  366.  
  367. - -----------------------------------------------------------------------------
  368.  
  369. Question 8.1.  What is a .gz file ? And a .tgz ? And ... ?
  370.  
  371. .gz (and .z) files have been compressed using GNU gzip.  You have to get a
  372. copy of gunzip (included in the gzip distribution and with most Linux
  373. installations) to unpack the file.
  374.  
  375. .taz and .tz are tarfiles (made with Unix tar) compressed using standard
  376. Unix compress.
  377.  
  378. .tgz (or .tpz) is a tarfile compressed with gzip.
  379.  
  380. .lsm is a Linux Software Map entry, in the form of a short text file.
  381. Details about the LSM and the LSM itself are available in the docs
  382. subdirectory on sunsite.unc.edu.
  383.  
  384. The file command can often tell you what a file is.
  385.  
  386. If you find that gzip complains when you try to uncompress a gzipped file
  387. you probably downloaded it in ASCII mode by mistake.  You must download
  388. most things in binary mode - remember to type binary as a command in FTP
  389. before using get to get the file.
  390.  
  391. - -----------------------------------------------------------------------------
  392.  
  393. Question 8.2.  What does VFS stand for ?
  394.  
  395. Virtual File System.  It's the abstraction layer between the user and real
  396. filesystems like ext2, minix and msdos.  Amongst other things, its job is
  397. to flush the read buffer when it detects a disk change on the floppy disk
  398. drive:
  399.    VFS: Disk change detected on device 2/0
  400.  
  401. - -----------------------------------------------------------------------------
  402.  
  403. Question 8.3.  What is a BogoMip ?
  404.  
  405. `BogoMips' is a contraction of `Bogus MIPS'.  MIPS stands for (depending
  406. who you listen to) Millions of Instructions per Second, or Meaningless
  407. Indication of Processor Speed.
  408.  
  409. The number printed at boot-time is the result of a kernel timing
  410. calibration, used for very short delay loops by some device drivers.
  411.  
  412. As a very rough guide the BogoMips will be approximately:
  413.      386SX              clock * 0.14
  414.      386DX              clock * 0.18
  415.      486Cyrix/IBM       clock * 0.33
  416.      486SX/DX/DX2       clock * 0.50
  417.      586                clock * 0.39
  418.  
  419. If the number you're seeing is wildly lower than this you may have the
  420. Turbo button or CPU speed set incorrectly, or have some kind of caching
  421. problem [as described in Q6.3 `When I add more memory it slows to a
  422. crawl.'.]
  423.  
  424. For values people have seen with other, rarer, chips, see the BogoMips
  425. Mini-HOWTO, on sunsite.unc.edu in /pub/Linux/docs/howto/mini/BogoMips.
  426.  
  427. - -----------------------------------------------------------------------------
  428.  
  429. Question 8.4.  What is the Linux Journal and where can I get it ?
  430.  
  431. Linux Journal is a monthly magazine (printed on paper) that is available
  432. on newsstands and via subscription worldwide. Email <linux@ssc.com> for
  433. details.
  434.  
  435. - -----------------------------------------------------------------------------
  436.  
  437. Question 8.5.  How many people use Linux ?
  438.  
  439. Linux is freely available, and no one is required to register their copies
  440. with any central authority, so it is difficult to know.  Several
  441. businesses are now surviving solely on selling and supporting Linux, and
  442. very few Linux users use those businesses, relatively speaking.  The Linux
  443. newsgroups are some of the most heavily read on the Net, so the number is
  444. likely in the hundreds of thousands, but firm numbers are hard to come by.
  445.  
  446. However, one brave soul, Harald T. Alvestrand
  447. <Harald.T.Alvestrand@uninett.no>, has decided to try, and asks that if you
  448. use Linux, you send a message to <linux-counter@uninett.no> with one of
  449. the following subjects: `I use Linux at home', `I use Linux at work', or
  450. `I use Linux at home and at work'.  He will also accept `third-party'
  451. registrations - ask him for details.
  452.  
  453. He posts his counts to comp.os.linux.misc each month; alternatively look
  454. on aun.uninett.no in /pub/misc/linux-counter.
  455.  
  456. - -----------------------------------------------------------------------------
  457.  
  458. Question 8.6.  How should I pronounce Linux ?
  459.  
  460. This is a matter of religious debate, of course !
  461.  
  462. If you want to hear the Linus himself say how he pronounces it download
  463. english.au or swedish.au from ftp.funet.fi (in
  464. /pub/OS/Linux/PEOPLE/Linus/SillySounds).  If you have a soundcard or the
  465. PC-speaker audio driver you can hear them by typing
  466.    cat english.au >/dev/audio
  467. The difference isn't in the pronunciation of Linux but in the language
  468. Linus uses to say hello.
  469.  
  470. For the benefit of those of you who don't have the equipment or
  471. inclination: Linus pronounces Linux approximately as Leenus, where the ee
  472. is as in feet but rather shorter and the u is like a much shorter version
  473. of the French eu sound in peur (pronouncing it as the u in put is probably
  474. passable).
  475.  
  476. When speaking English I pronounce it Lie-nucks (u as in bucket) --- this
  477. is an anglicised pronunciation based on the analogy with Linus' name,
  478. which in English is usually pronounced Lie-nus (u as in put).  It is of
  479. course quite acceptable and common to modify the pronunciation of a proper
  480. noun when it changes languages.
  481.  
  482. I think I can safely say that the pronunciation Linnucks (short i as in
  483. pit, short u as in bucket) is wrong in English, as it is not the original
  484. Swedish pronunciation, not a sensible direct anglicisation of it, and not
  485. based on the anglicised version of Linus' name.
  486.  
  487. ===============================================================================
  488.  
  489. Section 9.  Frequently encountered error messages
  490.  
  491.  Q9.1        During linking I get Undefined symbol _mcount
  492.  Q9.2        lp1 on fire
  493.  Q9.3        INET: Warning: old style ioctl(IP_SET_DEV) called!
  494.  Q9.4        ld: unrecognized option '-m486'
  495.  Q9.5        GCC says Internal compiler error
  496.  Q9.6        make says Error 139
  497.  Q9.7        shell-init: permission denied when I log in.
  498.  Q9.8        No utmp entry.  You must exec ... when I log in.
  499.  Q9.9        Warning - bdflush not running
  500.  Q9.10       Warning: obsolete routing request made.
  501.  Q9.11       EXT2-fs: warning: mounting unchecked filesystem
  502.  Q9.12       EXT2-fs warning: maximal count reached
  503.  Q9.13       EXT2-fs warning: checktime reached
  504.  Q9.14       df says Cannot read table of mounted filesystems
  505.  Q9.15       fdisk says Partition X has different physical/logical ...
  506.  Q9.16       fdisk: Partition 1 does not start on cylinder boundary
  507.  Q9.17       fdisk says cannot use nnn sectors of this partition
  508.  Q9.18       fdisk says partition n has an odd number of sectors
  509.  Q9.19       mtools says cannot initialise drive XYZ
  510.  
  511. - -----------------------------------------------------------------------------
  512.  
  513. Question 9.1.  During linking I get Undefined symbol _mcount
  514.  
  515. This is usually due to a bad interaction between a brokenness in SLS and
  516. the C library release notes.  Your libc.a has been replaced by the
  517. profiling library.  You should remove libc.a, libg.a and libc_p.a and once
  518. again install the new libraries (following the release notes, of course).
  519.  
  520. - -----------------------------------------------------------------------------
  521.  
  522. Question 9.2.  lp1 on fire
  523.  
  524. This is a joke/traditional error message indicating that some sort of
  525. error is being reported by your printer, but it isn't offline or out of
  526. paper.  It may be that you have some kind of I/O or IRQ conflict - check
  527. your cards' settings.  Hopefully it isn't really on fire ...
  528.  
  529. - -----------------------------------------------------------------------------
  530.  
  531. Question 9.3.  INET: Warning: old style ioctl(IP_SET_DEV) called!
  532.  
  533. You are trying to use the old network configuration utilities; the new
  534. ones can be found on tsx-11.mit.edu in
  535. /pub/linux/packages/net/net-2/binaries.
  536.  
  537. Note that they cannot be used just like the old-style programs; see the
  538. NET-2 HOWTO for instructions on how to set up networking correctly.
  539.  
  540. - -----------------------------------------------------------------------------
  541.  
  542. Question 9.4.  ld: unrecognized option '-m486'
  543.  
  544. You have an old version of ld.  Install a newer binutils package -- this
  545. will contain an updated ld.  Look on tsx-11.mit.edu in
  546. /pub/linux/packages/GCC for binutils.tar.z.
  547.  
  548. - -----------------------------------------------------------------------------
  549.  
  550. Question 9.5.  GCC says Internal compiler error
  551.  
  552. If the fault is repeatable (ie, it always happens at the same place in the
  553. same file --- even after rebooting and trying again, using a stable
  554. kernel) you have discovered a bug in GCC.  See the GCC Info documentation
  555. (type Control-h i in Emacs, and select GCC from the menu) for details on
  556. how to report this -- make sure you have the latest version though.
  557.  
  558. Note that this is probably not a Linux-specific problem; unless you were
  559. compiling a program many other Linux users also compile you should not
  560. post your bug report to any of the comp.os.linux groups.
  561.  
  562. If the problem is not repeatable you are very probably experiencing memory
  563. corruption --- see Q9.6 `make says Error 139'.
  564.  
  565. - -----------------------------------------------------------------------------
  566.  
  567. Question 9.6.  make says Error 139
  568.  
  569. Your compiler driver (gcc) dumped core.  You probably have a corrupted,
  570. buggy or old version of GCC --- get the latest release.  Alternatively you
  571. may be running out of swap space --- see Q6.6 `My machine runs very slowly
  572. when I run GCC / X / ...' for more info.
  573.  
  574. If this doesn't fix the problem you are probably having problems with
  575. memory or disk corruption.  Check that the clock rate, wait states and
  576. refresh timing for your SIMMs are correct.  If so you may have some dodgy
  577. SIMMs or a faulty motherboard or hard disk or controller.
  578.  
  579. Linux, like any Unix, is a very good memory tester --- much better than
  580. DOS-based memory test programs.
  581.  
  582. Reportedly some clone x87 maths coprocessors can cause problems; try
  583. compiling a kernel with maths emulation [Q7.6 `How do I upgrade/recompile
  584. my kernel ?']; you may need to use the no387 kernel command line flag on
  585. the LILO prompt to force the kernel to use it, or it may be able to work
  586. and still use the 387, with the maths emulation compiled in but mainly
  587. unused.
  588.  
  589. - -----------------------------------------------------------------------------
  590.  
  591. Question 9.7.  shell-init: permission denied when I log in.
  592.  
  593. Your root directory and all the directories up to your home directory must
  594. be readable and executable by everybody.  See the manpage for chmod or a
  595. book on Unix for how to fix the problem.
  596.  
  597. - -----------------------------------------------------------------------------
  598.  
  599. Question 9.8.  No utmp entry.  You must exec ... when I log in.
  600.  
  601. Your /etc/utmp is screwed up.  You should have
  602.    > /etc/utmp
  603. in your /etc/rc or /etc/rc.local.  See Q6.9 `I have screwed up my system
  604. and can't log in to fix it.' for how to be able to do this.
  605.  
  606. - -----------------------------------------------------------------------------
  607.  
  608. Question 9.9.  Warning - bdflush not running
  609.  
  610. The development kernel series now uses a better strategy for writing
  611. cached disk blocks.  In addition to the kernel changes, this involves
  612. replacing the old update program which used to write everything every 30
  613. seconds with a more subtle daemon (actually a pair), known as bdflush.
  614.  
  615. Get bdflush-n.n.tar.gz from the same place as the kernel source code [Q7.6
  616. `How do I upgrade/recompile my kernel ?'] and compile and install it; it
  617. should be started before the usual boot-time filesystem checks.  It will
  618. work fine with older kernels as well, so there's no need to keep the old
  619. update around.
  620.  
  621. - -----------------------------------------------------------------------------
  622.  
  623. Question 9.10.  Warning: obsolete routing request made.
  624.  
  625. This is nothing to worry about; it just means that the version of route
  626. you have is a little out of date compared to the kernel.  You can make the
  627. message go away by getting a new version of route from the same place as
  628. the kernel source code [Q7.6 `How do I upgrade/recompile my kernel ?'].
  629.  
  630. - -----------------------------------------------------------------------------
  631.  
  632. Question 9.11.  EXT2-fs: warning: mounting unchecked filesystem
  633.  
  634. You need to run e2fsck (or fsck -t ext2 if you have the fsutils package)
  635. with the -a option to get it to clear the `dirty' flag, and then cleanly
  636. unmount the partition during each shutdown.
  637.  
  638. The easiest way to do this is to get the latest fsck, umount and shutdown
  639. commands, available in Rik Faith's util-linux package [Q2.5 `Where can I
  640. get Linux material by FTP ?'].  You have to make sure that your /etc/rc
  641. scripts use them correctly.
  642.  
  643. NB don't try to check a filesystem that's mounted read-write - this
  644. includes the root partition if you don't see
  645.    VFS: mounted root ... read-only
  646. at boot time.  You must arrange for to initially mount the root filesystem
  647. readonly, check it if necessary, and then remount it read-write.  Read the
  648. documentation that comes with util-linux to find out how to do this.
  649.  
  650. Note that you need to specify the -n option to mount to get it not to try
  651. to update /etc/mtab, since the root filesystem is still read-only and this
  652. will otherwise cause it to fail !
  653.  
  654. - -----------------------------------------------------------------------------
  655.  
  656. Question 9.12.  EXT2-fs warning: maximal count reached
  657.  
  658. This message is issued by the kernel when it mounts a filesystem that's
  659. marked as clean, but whose `number of mounts since check' counter has
  660. reached the predifined value.  The solution is to get the latest version
  661. of the ext2fs utilities (e2fsprogs-0.5a.tar.gz at the time of writing)
  662. from the usual sites [Q2.5 `Where can I get Linux material by FTP ?'].
  663.  
  664. The maximal number of mounts value can be examined and changed using the
  665. tune2fs program from this package.
  666.  
  667. - -----------------------------------------------------------------------------
  668.  
  669. Question 9.13.  EXT2-fs warning: checktime reached
  670.  
  671. Kernels from 1.0 onwards support checking a filesystem based on the
  672. elapsed time since the last check as well as by the number of mounts.  Get
  673. the latest version of the ext2fs utilities [see Q9.12 `EXT2-fs warning:
  674. maximal count reached'].
  675.  
  676. - -----------------------------------------------------------------------------
  677.  
  678. Question 9.14.  df says Cannot read table of mounted filesystems
  679.  
  680. There is probably something wrong with your /etc/mtab or /etc/fstab files.
  681. If you have a reasonably new version of mount, /etc/mtab should be emptied
  682. or deleted at boot time (in /etc/rc or /etc/rc.local), using something
  683. like
  684.    rm -f /etc/mtab*
  685.  
  686. Some versions of SLS have an entry for the root partition in /etc/mtab
  687. made in /etc/rc by using rdev.  This is incorrect -- the newer versions of
  688. mount do this automatically.
  689.  
  690. Other versions of SLS have a line in /etc/fstab that looks like:
  691.     /dev/sdb1   /root   ext2   defaults
  692. This is wrong.  /root should read simply /.
  693.  
  694. - -----------------------------------------------------------------------------
  695.  
  696. Question 9.15.  fdisk says Partition X has different physical/logical ...
  697.  
  698. If the partition number (X, above) is 1 this is the same problem as Q9.16
  699. `fdisk: Partition 1 does not start on cylinder boundary'.
  700.  
  701. If the partition begins or ends on a cylinder numbered beyond 1024, this
  702. is because standard DOS disk geometry information format in the partition
  703. table can't cope with cylinder numbers with more than 10 bits.
  704.  
  705. This will cause DOS to be unable to access the partition correctly, and
  706. will make booting a Linux kernel from that partition using LILO
  707. problematic at best.
  708.  
  709. You can still use the partition for Linux or other operating systems that
  710. use linear addressing (ie, number the disk blocks sequentially without
  711. looking at heads, tracks and sectors).
  712.  
  713. I'd recommend creating at least one Linux partition entirely under the
  714. 1024-cylinder limit and booting off that; the other partitions will then
  715. be OK.
  716.  
  717. - -----------------------------------------------------------------------------
  718.  
  719. Question 9.16.  fdisk: Partition 1 does not start on cylinder boundary
  720.  
  721. The version of fdisk that comes with many Linux systems creates partitions
  722. that fail its own validity checking.  Unfortunately if you've already
  723. installed your system there's not much you can do about this, apart from
  724. copying the data off the partition, deleting and remaking it, and copying
  725. the data back.
  726.  
  727. You can avoid the problem by getting the latest version of fdisk, from Rik
  728. Faith's util-linux package (available on all good FTP sites).
  729. Alternatively, if you are creating a new partition 1 that starts in the
  730. first cylinder, you can do the following to get a partition that fdisk
  731. likes.
  732.  
  733. 1. Create partition 1 in the normal way.  A p listing will produce the
  734. mismatch complaint.
  735.  
  736. 2. Type u to set sector mode and do p again.  Copy down the number from
  737. the "End" column.
  738.  
  739. 3. Delete partition 1.
  740.  
  741. 4. While still in sector mode recreate partition 1.  Set the first sector
  742. to match the number of sectors per track.  This is the sector number in
  743. the first line of the p output.  Set the last sector to the value noted in
  744. 2. above.
  745.  
  746. 5. Type u to reset cylinder mode and continue with other partitions.
  747.  
  748. Ignore the message about unallocated sectors - they refer to the sectors
  749. on the first track apart from the Master Boot Record, which are not used
  750. if you start the first partition in track 2.
  751.  
  752. - -----------------------------------------------------------------------------
  753.  
  754. Question 9.17.  fdisk says cannot use nnn sectors of this partition
  755.  
  756. Originally Linux only supported the Minix filesystem, which cannot use
  757. more than 64Mb per parition.  This limitation is not present in the more
  758. advanced filesystems now available, such as ext2fs (the 2nd version of the
  759. Extended Filesystem) and xiafs (Qi Xia's filesystem).
  760.  
  761. If you intend to use ext2fs or xiafs you can ignore the message.
  762.  
  763. - -----------------------------------------------------------------------------
  764.  
  765. Question 9.18.  fdisk says partition n has an odd number of sectors
  766.  
  767. The PC disk partitioning scheme works in 512-byte sectors, but Linux uses
  768. 1K blocks.  If you have a partition with an odd number of sectors the last
  769. sector is wasted.  Ignore the message.
  770.  
  771. - -----------------------------------------------------------------------------
  772.  
  773. Question 9.19.  mtools says cannot initialise drive XYZ
  774.  
  775. This means that mtools is having trouble accessing the drive.  This can be
  776. due to several things.
  777.  
  778. Often this is due to the permissions on floppy drive devices (/dev/fd0*
  779. and /dev/fd1*) being incorrect --- the user running mtools must have the
  780. appropriate access.  See the manpage for chmod for details.
  781.  
  782. Most versions of mtools distributed with Linux systems (not the standard
  783. GNU version) use the contents of a file /etc/mtools to discover which
  784. devices and densities to use, in place of having this information compiled
  785. into the binary.  Mistakes in this file often cause problems.  There is
  786. often no documentation about this --- distribution packagers please note
  787. that this is *evil*.
  788.  
  789. For the easiest way to access your DOS files (especially those on a hard
  790. disk partition) see Q3.2 `How do I access files on my DOS partition or
  791. floppy ?'.  Note - you should never use mtools to access files on an
  792. msdosfs mounted partition or disk !
  793.  
  794. ===============================================================================
  795.  
  796. Section 10.  The X Window System
  797.  
  798.  Q10.1       Does Linux support X Windows ?
  799.  Q10.2       Where can I get an Xconfig for my video card and monitor ?
  800.  Q10.3       xterm logins show up strangely in who, finger
  801.  Q10.4       I can't get X Windows to work right.
  802.  
  803. - -----------------------------------------------------------------------------
  804.  
  805. Question 10.1.  Does Linux support X Windows ?
  806.  
  807. Yes.  Linux uses XFree86 (the current version is 3.1, which is based on
  808. X11R6).  You need to have a video card which is supported by XFree86.  See
  809. the Linux XFree86 HOWTO for more details.
  810.  
  811. Some of the Linux releases -- MCC, for example -- don't come with X
  812. Windows already included; however you can easily download and install it
  813. from /pub/Linux/X11/Xfree86-* on sunsite.unc.edu and its mirror sites.
  814. Read the XFree86 HOWTO for installation instructions.
  815.  
  816. Other releases -- Slackware, Debian, TAMU and SLS, for example -- come
  817. with X Windows already included
  818.  
  819. - -----------------------------------------------------------------------------
  820.  
  821. Question 10.2.  Where can I get an Xconfig for my video card and monitor ?
  822.  
  823. See the Linux XFree86 HOWTO.
  824.  
  825. You'll need to put together your own Xconfig file, because it depends on
  826. the exact combination of video card and monitor you have.  It's not that
  827. hard to do -- read the instructions that came with XFree86, in
  828. /usr/X386/lib/X11/etc.  The file you probably most need to look at is
  829. README.Config.
  830.  
  831. Please don't post to comp.os.linux.help asking for an Xconfig.
  832.  
  833. - -----------------------------------------------------------------------------
  834.  
  835. Question 10.3.  xterm logins show up strangely in who, finger
  836.  
  837. The xterm that comes with XFree86 2.0 and earlier doesn't correctly
  838. understand the format that Linux uses for the /etc/utmp file, where the
  839. system records who is logged in.  It therefore doesn't set all the
  840. information correctly.
  841.  
  842. I do not know whether XFree86 2.1 fixes this problem.
  843.  
  844. - -----------------------------------------------------------------------------
  845.  
  846. Question 10.4.  I can't get X Windows to work right.
  847.  
  848. Read the XFree86 HOWTO - note the question and answer section.
  849.  
  850. Try reading comp.windows.x.i386unix -- specifically read the the FAQ for
  851. that group.
  852.  
  853. Please don't post X Windows or XFree86 related questions to
  854. comp.os.linux.help unless they are Linux-specific.
  855.  
  856. ===============================================================================
  857.  
  858. Section 11.  Questions applicable to very out-of-date software
  859.  
  860.  Q11.1       How can I have more than 16Mb of swap ?
  861.  Q11.2       GCC sometimes uses huge amounts of virtual memory and thrashes
  862.  Q11.3       My keyboard goes all funny after I switch VC's.
  863.  
  864. The questions in this section are only relevant to users of software that
  865. is at least 3 months old.
  866.  
  867. Please let me know if you find the answer to a problem you had here, as
  868. unused questions in this section will eventually disappear [Q13.1
  869. `Feedback is invited'].
  870.  
  871. - -----------------------------------------------------------------------------
  872.  
  873. Question 11.1.  How can I have more than 16Mb of swap ?
  874.  
  875. Use a recent kernel -- from at least 0.99.14 Linux can use swap partitions
  876. of up to 128Mb.
  877.  
  878. If you use an older kernel which only supports swap area sizes up to 16Mb
  879. you have to set up more than one swap partition or swapfile.
  880.  
  881. - -----------------------------------------------------------------------------
  882.  
  883. Question 11.2.  GCC sometimes uses huge amounts of virtual memory and thrashes
  884.  
  885. Older versions of GCC had a bug which made them use lots of memory if you
  886. tried to compile a program which had a large static data table in it.
  887.  
  888. You can either upgrade your version of GCC to at least version 2.5, or add
  889. more swap if necessary and just grin and bear it; it'll work in the end.
  890.  
  891. - -----------------------------------------------------------------------------
  892.  
  893. Question 11.3.  My keyboard goes all funny after I switch VC's.
  894.  
  895. This is a bug in kernel versions before 0.99pl14-alpha-n.  Sometimes Linux
  896. loses track of what modifier keys (Shift, Alt, Control etc.) are pressed
  897. or not, and believes that one or more are pressed when they are not.  The
  898. solution is to press and release each of the modifier keys (without
  899. pressing any other keys) --- this will ensure that Linux knows what state
  900. the keyboard is actually in.
  901.  
  902. This problem often occurs when switching out of X windows; it can
  903. sometimes be avoided by releasing Ctrl and Alt very quickly after pressing
  904. the F-key of the VC you are switching to.
  905.  
  906. ===============================================================================
  907.  
  908. Section 12.  How to get further assistance
  909.  
  910.  Q12.1       You still haven't answered my question !
  911.  Q12.2       What to put in a posting to comp.os.linux.help
  912.  
  913. - -----------------------------------------------------------------------------
  914.  
  915. Question 12.1.  You still haven't answered my question !
  916.  
  917. Please read all of this answer before posting.  I know it's a bit long,
  918. but you may be about to make a fool of yourself in front of 50000 people
  919. and waste hundreds of hours of their time.  Don't you think it's worth it
  920. to spend some of your time reading and following these instructions ?
  921.  
  922. If you think an answer is incomplete or inaccurate, please mail Ian
  923. Jackson at <ijackson@nyx.cs.du.edu>.
  924.  
  925. Read the appropriate Linux Documentation Project books - see Q2.1 `Where
  926. can I get the HOWTOs and other documentation ?'.
  927.  
  928. If you're a Unix newbie read the FAQ for comp.unix.questions, and those
  929. for any of the other comp.unix.* groups that may be relevant.
  930.  
  931. Linux is a Unix clone, so almost everything you read there will apply to
  932. Linux.  Those FAQs can, like all FAQs, be found on rtfm.mit.edu in
  933. /pub/usenet/news.answers (the mail-server@rtfm.mit.edu can send you these
  934. files, for those who don't have FTP access).  There are mirrors of rtfm's
  935. FAQ artchives on various sites - check the Introduction to *.answers
  936. posting, posted, or look in news-answers/introduction in the directory
  937. above.
  938.  
  939. Check the relevant HOWTO for the subject in question, if there is one, or
  940. an appropriate old-style sub-FAQ document.  Check the FTP sites.
  941.  
  942. Try experimenting --- that's the best way to get to know Unix and Linux.
  943.  
  944. Read the documentation.  Check the manpages (type man man if you don't
  945. know about manpages.  Try man -k <subject> --- it often lists useful and
  946. relevant manpages.
  947.  
  948. Check the Info documentation (type C-h i, i.e. Control H followed by I in
  949. Emacs) --- NB this isn't just for Emacs; for example the GCC documentation
  950. lives here as well.
  951.  
  952. There will also often be a README file with a package giving installation
  953. and/or usage instructions.
  954.  
  955. Make sure that you don't have a corrupted or out-of-date copy of the
  956. program in question.  If possible, download it again and reinstall it ---
  957. perhaps you made a mistake the first time.
  958.  
  959. Read comp.os.linux.announce --- this often contains very important
  960. information for all Linux users.
  961.  
  962. X-Windows questions belong in comp.windows.x.i386unix, not in
  963. comp.os.linux.help.  But read the group first (including the FAQ), before
  964. you post !
  965.  
  966. Only if you have done all of these things and are still stuck should you
  967. post to comp.os.linux.help.  Make sure you read the next question, Q12.2
  968. `What to put in a posting to comp.os.linux.help', first.
  969.  
  970. - -----------------------------------------------------------------------------
  971.  
  972. Question 12.2.  What to put in a posting to comp.os.linux.help
  973.  
  974. Please read carefully the following advice about how to write your
  975. posting.  Taking heed of it will greatly increase the chances that an
  976. expert and/or fellow user reading your posting will have enough
  977. information and motivation to reply.
  978.  
  979. Make sure you give full details of the problem, including:
  980.  
  981. * What program, exactly, you are having problems with.  Include the
  982.   version number if known and say where you got it.  Many standard
  983.   commands tell you their version number if you give them a --version
  984.   option.
  985.  
  986. * Which Linux release you're using (MCC, Slackware, Debian or whatever)
  987.   and what version of that release.
  988.  
  989. * The *exact* and *complete* text of any error messages printed.
  990.  
  991. * Exactly what behaviour you were expecting, and exactly what behaviour
  992.   you observed.  A transcript of an example session is a good way of
  993.   showing this.
  994.  
  995. * The contents of any configuration files used by the program in question
  996.   and any related programs.
  997.  
  998. * What version of the kernel and of the shared libraries you are using.
  999.   The kernel version can be found by typing uname -a, and the shared
  1000.   library version by typing ls -l /lib/libc.so.4.
  1001.  
  1002. * Details of what hardware you're running on, if it seems appropriate.
  1003.  
  1004. You are in little danger of making your posting too long unless you
  1005. include large chunks of source code or uuencoded files, so err on the side
  1006. of giving too much information.
  1007.  
  1008. Use a clear, detailed Subject line.  Don't put things like `doesn't work',
  1009. `Linux', `help' or `question' in it --- we already knew that ! Save the
  1010. space for the name of the program, a fragment of the error message,
  1011. summary of the unusual behaviour, etc.
  1012.  
  1013. If you are reporting an `unable to handle kernel paging request' message,
  1014. follow the instructions in the Linux kernel sources README for turning the
  1015. numbers into something more meaningful.  If you don't do this noone who
  1016. reads your post will be able to do it for you, as the mapping from numbers
  1017. to function names varies from one kernel to another.
  1018.  
  1019. Put a summary paragraph at the top of your posting.
  1020.  
  1021. At the bottom of your posting, ask for responses by email and say you'll
  1022. post a summary.  Back this up by using Followup-To: poster.  Then, do
  1023. actually post a summary in a few days or a week or so.  Don't just
  1024. concatenate the replies you got --- summarise.  Putting the word SUMMARY
  1025. in your summary's Subject line is also a good idea.  Consider submitting
  1026. the summary to comp.os.linux.announce.
  1027.  
  1028. Make sure your posting doesn't have an inappropriate References header
  1029. line.  This marks your article as part of the thread of the article
  1030. referred to, which will often cause it to be junked by the readers with
  1031. the rest of a boring thread.
  1032.  
  1033. You might like to say in your posting that you've read this FAQ and the
  1034. appropriate HOWTOs - this may make people less likely to skip your
  1035. posting.
  1036.  
  1037. Remember that you should not post email sent to you personally without the
  1038. sender's permission.
  1039.  
  1040. ===============================================================================
  1041.  
  1042. Section 13.  Administrative information and acknowledgements
  1043.  
  1044.  Q13.1       Feedback is invited
  1045.  Q13.2       Formats in which this FAQ is available
  1046.  Q13.3       Authorship and acknowledgements
  1047.  Q13.4       Disclaimer and Copyright
  1048.  
  1049. - -----------------------------------------------------------------------------
  1050.  
  1051. Question 13.1.  Feedback is invited
  1052.  
  1053. Please send me your comments on this FAQ.
  1054.  
  1055. I accept submissions for the FAQ in any format;  All contributions
  1056. comments and corrections are gratefully received.
  1057.  
  1058. Please send them to <ijackson@nyx.cs.du.edu>.
  1059.  
  1060. By the way, if you wish to refer to a question(s) in the FAQ it's most
  1061. useful for me if you do so by the question heading, rather than the
  1062. number, as the question numbers are generated automatically and I don't
  1063. see them in the source file I edit.
  1064.  
  1065. - -----------------------------------------------------------------------------
  1066.  
  1067. Question 13.2.  Formats in which this FAQ is available
  1068.  
  1069. This document is available as an ASCII text file, an Emacs Info document,
  1070. an HTML World Wide Web page, PostScript and as a USENET news posting.
  1071.  
  1072. The ASCII, Emacs Info, HTML and posted versions and a Lout typesetter file
  1073. (from which the PostScript is produced) are generated automatically by a
  1074. Perl script which takes as input a file in the Bizarre Format with No
  1075. Name.
  1076.  
  1077. The output files linux-faq.ascii, .info and .ps and a tarfile
  1078. linux-faq.source.tar.gz, containing the BFNN source and Perl script
  1079. converter, are available in the docs directories of the major Linux FTP
  1080. sites.
  1081.  
  1082. The HTML version of this FAQ is available as
  1083. http://www.cl.cam.ac.uk/users/iwj10/linux-faq/index.html.
  1084.  
  1085. The USENET version is posted regularly to comp.os.linux.announce,
  1086. comp.os.linux.help, comp.answers and news.answers.
  1087.  
  1088. - -----------------------------------------------------------------------------
  1089.  
  1090. Question 13.3.  Authorship and acknowledgements
  1091.  
  1092. This FAQ was compiled by Ian Jackson <ijackson@nyx.cs.du.edu>, with
  1093. assistance and comments from others too numerous to mention.  It was
  1094. loosely based on the original Linux FAQ by Marc-Michel Corsini.
  1095.  
  1096. Special thanks are due to Matt Welsh, who coordinates the HOWTOs and has
  1097. written substantial portions of many of them, and to Marc-Michel Corsini.
  1098. Thanks also to the contributors to the previous Linux FAQ, and to those
  1099. sent me comments about this FAQ, and who answered questions on the
  1100. newsgroup.
  1101.  
  1102. Last but not least, thanks to Linus Torvalds and the other contributors to
  1103. Linux for giving us something to write about !
  1104.  
  1105. - -----------------------------------------------------------------------------
  1106.  
  1107. Question 13.4.  Disclaimer and Copyright
  1108.  
  1109. Note that this document is provided as is.  The information in it is *not*
  1110. warranted to be correct; you use it at your own risk.
  1111.  
  1112. Linux Frequently Asked Questions with Answers is Copyright 1994 by Ian
  1113. Jackson <ijackson@nyx.cs.du.edu>.
  1114.  
  1115. It may be reproduced and distributed in its entirity (including this
  1116. authorship, copyright and permission notice) provided that either:
  1117.  
  1118. * the distribution is not commercial (commercial means any situation in
  1119.   which you benefit financially - directly or indirectly such as by
  1120.   inclusion in a publication which carries commercial advertising), or
  1121. * the distribution is in machine-readable form (ie, a form intended to be
  1122.   easily processed by a computer).
  1123.  
  1124. Note that this restriction is not intended to prohibit charging for the
  1125. service of printing or copying a document supplied by your customer.
  1126.  
  1127. Any distribution of a partial copy or extract, a translation or a
  1128. derivative work must be approved by me before distribution.  Email me -
  1129. I'll probably be happy to oblige !
  1130.  
  1131. Exceptions to these rules may be granted, and I shall be happy to answer
  1132. any questions about this copyright --- write to Ian Jackson, Churchill
  1133. College, Cambridge, CB3 0DS, United Kingdom or email
  1134. <ijackson@nyx.cs.du.edu>.  These restrictions are here to protect the
  1135. contributors, not to restrict you as educators and learners.
  1136.  
  1137. Ian Jackson asserts the right to be identified as the author of this work,
  1138. and claims the moral rights of paternity and integrity, in accordance with
  1139. the Copyright, Designs and Patents Act, 1988.
  1140.  
  1141.  
  1142. -----BEGIN PGP SIGNATURE-----
  1143. Version: 2.6
  1144.  
  1145. iQCVAgUBLrPJkcMWjroj9a3bAQHZ5wQAmSoERe7y9JW7CM8uTYPNEYvc6Awm8jyX
  1146. d7KcdkngFmqjZsw59jV59MEy4kwbrYsT2hSgiuCRV/f8cWHfGl4s9zylzXEABx46
  1147. SJBsk2at5BnoV4vSSxTqrvujFAQAUKkw9RLqJ98YzY6yW6LHO2y3LZ8GufkZ1i6E
  1148. EUYnIMlcKuo=
  1149. =XRzL
  1150. -----END PGP SIGNATURE-----
  1151. -- 
  1152. Ian Jackson, at home.         ijackson@nyx.cs.du.edu or iwj10@cus.cam.ac.uk
  1153. +44 1223 575512    Escoerea on IRC.   http://www.cl.cam.ac.uk/users/iwj10/
  1154. 2 Lexington Close, Cambridge, CB4 3LS, England.   Urgent: iwj@cam-orl.co.uk
  1155.  
  1156.